Editable tables in shiny

Week4 pitch presentation for Coursera’s Developing Data Products

Daniel Bader

2019-10-08

Motivation

Create a shiny template for use with my actual work data that has the following features:

Data: mtcars

Quarter mile speed in seconds vs horse power

plot_ly(data = mtcars, x = ~hp, y = ~qsec, hovertext = rownames(mtcars)) %>%
    add_markers()

Editable table

Not enough?

https://baderd.shinyapps.io/Dynamic_mtcars/